home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 051-075 / scopedisk68 / c2mod / dates.def < prev    next >
Encoding:
Modula Definition  |  1995-03-19  |  775 b   |  36 lines

  1. DEFINITION MODULE Dates;
  2.  
  3. (*
  4.    Routines for manipulating Dates.
  5.  
  6.    Revision history:
  7.      0.00
  8.  
  9.  
  10.    Copyright 1987 by:
  11.      Dale W. Thompson, 14500 Dallas Pkwy. #2091, Dallas, TX 75240
  12.  
  13.      This module and/or its procedures may be freely used by anyone,
  14.      but please acknowledge its use in any copyright notice of a
  15.      publicly distributed program.  Thank you.
  16.  
  17.      Please forward any comments, problems, or suggestions to me
  18.      at the address given, or to my CompuServe ID 75115,734.
  19. *)
  20.  
  21. FROM DOSLibrary IMPORT DateStampRec;
  22.  
  23. TYPE
  24.    DateString = ARRAY [0..22] OF CHAR;
  25.  
  26. PROCEDURE ParseDate( ds : DateStampRec; VAR date : DateString );
  27. (*
  28.     Returns 'date' as a character string in the form
  29.     "Dow Mth-Da-Yr Hr:Mn:Sc"
  30. *)
  31.  
  32.  
  33.  
  34. END (* DEFINITION MODULE *) Dates.
  35.  
  36.